home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / SYS / s / CountWords.bed < prev    next >
Text File  |  1996-09-26  |  376b  |  30 lines

  1. /*
  2. ** $VER: CountWords.bed 1.0 (02.01.96)
  3. **
  4. ** Count the number of words in the document
  5. */
  6.  
  7. OPTIONS RESULTS
  8.  
  9. SetDisplayLock ON
  10. SetInputLock ON
  11.  
  12. SetBookmark 0
  13. SetStatusBar "Counting..."
  14.  
  15. count = 0
  16. MoveSOF
  17.  
  18. DO UNTIL RC ~= 0
  19.     MoveNextWord
  20.     count = count + 1
  21. END
  22.  
  23. MoveBookmark 0
  24. ClearBookmark 0
  25.  
  26. SetDisplayLock OFF
  27. SetInputLock OFF
  28.  
  29. SetStatusBar "Counted " || count || " words"
  30.